home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 2.toast / pc / sample code / quicktime / streaming / qtspacketizerreassembler / imaaudiortp / headers / imaaudiortp.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-28  |  1.0 KB  |  53 lines

  1. /*
  2.     File:        IMAAudioRTP.h
  3.  
  4.     Contains:    Declarations for IMA Audio RTP components
  5.  
  6.     Copyright:    © 1997-1999 by Apple Computer Inc. all rights reserved.
  7.  
  8. */
  9.  
  10.  
  11.  
  12. #ifndef __COMPONENTVIDEORTP__
  13. #define __COMPONENTVIDEORTP__
  14.  
  15.  
  16.  
  17. /* ---------------------------------------------------------------------------
  18.  *        H E A D E R S
  19.  * ---------------------------------------------------------------------------
  20.  */
  21.  
  22. #ifdef REZ
  23. #    include "ConditionalMacros.r"
  24. #else
  25. #    include <ConditionalMacros.h>
  26. #    include "IMAAudioPayload.h"
  27. #endif /* REZ */
  28.  
  29.  
  30.  
  31. /* ---------------------------------------------------------------------------
  32.  *        C O N S T A N T S
  33.  * ---------------------------------------------------------------------------
  34.  */
  35.  
  36. #ifdef REZ
  37. enum
  38. {
  39.     kIMAAudioDataFormat            = 'ima4',    /* kIMACompression */
  40.     kComponentManufactureType    = 'SMPL'
  41. };
  42. #else
  43. enum
  44. {
  45.     kIMAAudioDataFormat            = FOUR_CHAR_CODE( 'ima4' ),    /* kIMACompression */
  46.     kComponentManufactureType    = FOUR_CHAR_CODE( 'SMPL' )
  47. };
  48. #endif /* REZ */
  49.  
  50.  
  51.  
  52. #endif /* __COMPONENTVIDEORTP__ */
  53.